:root {
    --white: #ffffff;
    --pink: #ff9ebc;
    --cherry: #990033;
    --black: #000000;
    --light-gray: #f8f8f8;
    --openpink: #ffcfdb;
    
    /* Social media brand colors */
    --facebook-blue: #1877F2;
    --instagram-purple: #E1306C;
    --twitter-blue: #1DA1F2;
    --whatsapp-green: #25D366;
    --telegram-blue: #0088cc;
    --vk-blue: #4C75A3;
  }
  
 
  
  
  body {
    background-color: var(--light-gray);
  }
  
  .gift-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--cherry);
    position: relative;
    font-size: 32px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, var(--openpink), var(--cherry), var(--openpink));
    margin: 15px auto;
    border-radius: 2px;
  }
  
  .gift-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  
  .gift-card {
    position: relative;
    width: 450px;
    height: 300px; /* Increased height to accommodate photos */
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(153, 0, 51, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .gift-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(153, 0, 51, 0.3);
  }
  
  .gift-card:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--pink), var(--cherry), var(--pink), var(--cherry));
    z-index: -1;
    border-radius: 20px;
    background-size: 400%;
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .gift-card:hover:before {
    opacity: 1;
  }
  
  @keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
  }
  
  .gift-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
  }
  
  .gift-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--openpink) 0%, var(--pink) 100%);
    z-index: 1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,30 C60,30 70,40 70,50 C70,60 60,70 50,70 C40,70 30,60 30,50 C30,40 40,30 50,30 Z" fill="none" stroke="%23ff9ebc" stroke-width="1" opacity="0.3"/></svg>');
    background-size: 100px;
    background-repeat: repeat;
    opacity: 0.7;
  }
  
  .gift-card-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .gift-card-decor {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
    background-color: var(--pink);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
  }
  
  .gift-card-decor:nth-child(2) {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
    background-color: var(--cherry);
    opacity: 0.1;
  }
  
  .gift-card-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--cherry);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    letter-spacing: 1px;
  }
  
  .gift-card-subtitle {
    font-size: 18px;
    color: var(--cherry);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.8;
  }
  
  .gift-card-price {
    font-size: 24px;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .gift-card-description {
    font-size: 14px;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
    opacity: 0.8;
  }
  
  /* Photo gallery in the gift card */
  .gift-card-photos {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  
  .gift-card-photo {
    width: 48%;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gift-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .gift-card-photo:hover {
    transform: scale(1.05);
  }
  
  /* Secondary button style */
  .secondary-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(45deg, var(--cherry), #990033);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px auto;
    text-align: center;
    box-shadow: 0 3px 8px rgba(153, 0, 51, 0.25);
    transition: all 0.3s ease;
  }
  
  .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(153, 0, 51, 0.35);
  }
  
  /* Enhanced button styles */
  .gift-card-button {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 12px;
    background: linear-gradient(45deg, var(--cherry), #770028, var(--cherry));
    background-size: 200% 200%;
    color: var(--white);
    text-align: center;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(153, 0, 51, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientBg 3s ease infinite;
  }
  
  @keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .gift-card-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
  }
  
  .gift-card-button:hover:before {
    left: 100%;
  }
  
  .gift-card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(153, 0, 51, 0.4);
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
    letter-spacing: 2px;
  }
  
  .gift-card-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(153, 0, 51, 0.4);
  }
  
  /* Modal styles */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-container {
    width: 90%;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  
  .modal-overlay.active .modal-container {
    transform: scale(1);
  }
  
  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cherry);
  }
  
  .modal-title {
    font-size: 24px;
    color: var(--cherry);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .modal-content {
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
     
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
  }
     
  /* Social media specific hover effects */
  .social-link.facebook:hover {
    background-color: var(--facebook-blue);
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(24, 119, 242, 0.4);
  }
     
  .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(225, 48, 108, 0.4);
  }
     
  .social-link.whatsapp:hover {
    background-color: var(--whatsapp-green);
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.4);
  }
     
  .social-link svg {
    transition: all 0.3s ease;
  }
     
  .social-link:hover svg {
    transform: scale(1.15);
  }
  .contact-info {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin-bottom: 10px;
    color: var(--black);
  }
  
  .salon-photos {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .salon-photo {
    width: 48%;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .salon-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Blur background effect */
  .blur-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.2;
    z-index: 0;
  }
  
  /* Ribbon decoration */
  .ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    z-index: 3;
  }
  
  .ribbon-content {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: var(--cherry);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: var(--white);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
  }